home *** CD-ROM | disk | FTP | other *** search
- { Form Template - Source and Destination Choices Lists }
- unit Arrtest5;
-
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
- StdCtrls;
-
- type
- TCopyDlg = class(TForm)
- OKBtn: TBitBtn;
- CancelBtn: TBitBtn;
- LstSource: TListBox;
- LstTarget: TListBox;
- SrcLabel: TLabel;
- DstLabel: TLabel;
- Label1: TLabel;
- EdtFromIndex: TEdit;
- Label2: TLabel;
- EdtToIndex: TEdit;
- Label3: TLabel;
- EdtNumItems: TEdit;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- implementation
-
- {$R *.DFM}
-
-
- end.
-